Autogenerated HTML docs for v1.4.3-g72bb 
diff --git a/git-grep.txt b/git-grep.txt index d8af4d9..bfbece9 100644 --- a/git-grep.txt +++ b/git-grep.txt 
@@ -14,7 +14,7 @@  [-v | --invert-match] [-h|-H] [--full-name]  [-E | --extended-regexp] [-G | --basic-regexp] [-F | --fixed-strings]  [-n] [-l | --files-with-matches] [-L | --files-without-match] - [-c | --count] + [-c | --count] [--all-match]  [-A <post-context>] [-B <pre-context>] [-C <context>]  [-f <file>] [-e] <pattern> [--and|--or|--not|(|)|-e <pattern>...]  [<tree>...] @@ -96,6 +96,11 @@ 	higher precedence than `--or`. `-e` has to be used for all 	patterns.   +--all-match:: +	When giving multiple pattern expressions combined with `--or`, +	this flag is specified to limit the match to files that +	have lines to match all of them. +  `<tree>...`:: 	Search blobs in the trees for specified patterns.   @@ -111,6 +116,10 @@ 	Looks for a line that has `#define` and either `MAX_PATH` or 	`PATH_MAX`.   +git grep --all-match -e NODE -e Unexpected:: +	Looks for a line that has `NODE` or `Unexpected` in +	files that have lines that match both. +  Author  ------  Originally written by Linus Torvalds <torvalds@osdl.org>, later